home *** CD-ROM | disk | FTP | other *** search
/ Private: Geographic / Private: Geographic.iso / INTROGEO.DXR / 00032.ls < prev    next >
Encoding:
Text File  |  1998-03-26  |  756 b   |  29 lines

  1. on mouseEnter me
  2.   set the visible of sprite (the spriteNum of me - 11) to 1
  3.   updateStage()
  4. end
  5.  
  6. on mouseLeave me
  7.   set the visible of sprite (the spriteNum of me - 11) to 0
  8. end
  9.  
  10. on mouseDown me
  11.   puppetSound("down")
  12.   set old to the memberNum of sprite (the spriteNum of me - 11)
  13.   set the member of sprite (the spriteNum of me - 11) to member (old - 11)
  14.   updateStage()
  15. end
  16.  
  17. on mouseUp me
  18.   puppetSound("up")
  19.   set old to the memberNum of sprite (the spriteNum of me - 11)
  20.   set the member of sprite (the spriteNum of me - 11) to member (old + 11)
  21.   updateStage()
  22. end
  23.  
  24. on mouseUpOutSide me
  25.   puppetSound("up")
  26.   set old to the memberNum of sprite (the spriteNum of me - 11)
  27.   set the member of sprite (the spriteNum of me - 11) to member (old + 11)
  28. end
  29.